home *** CD-ROM | disk | FTP | other *** search
/ Aminet 1 (Walnut Creek) / Aminet - June 1993 [Walnut Creek].iso / aminet / text / tex / tgrind.lha / TGrind / Makefile next >
Makefile  |  1993-01-04  |  671b  |  28 lines

  1. #    @(#)Makefile    4.1    (Berkeley)    10/19/82
  2. #
  3. # Hacked for SAS/C by Kari Sutela
  4. DESTDIR=tex:c
  5. DEFSFILE=tex:inputs/tgrindefs
  6. TEXINPUTS=tex:inputs
  7.  
  8. SOURCES=tfontedpr.c vgrindefs.c regexp.c
  9. CMDS=tgrind
  10. OBJS=retest.o regexp.o tfontedpr.o vgrindefs.o
  11.  
  12. all:    $(CMDS)
  13.  
  14. tgrind: tfontedpr.o vgrindefs.o regexp.o
  15.     slink lib:c.o tfontedpr.o vgrindefs.o regexp.o to tgrind lib lib:sc.lib
  16.  
  17. tfontedpr.o: tfontedpr.c
  18.     sc define DEFSFILE="${DEFSFILE}" tfontedpr.c
  19.  
  20. install: all
  21.     echo "You must have a ${DESTDIR} directory for this to work"
  22.     copy clone tgrind ${DESTDIR}
  23.     copy clone tgrindmac.tex tgrind.sty ${TEXINPUTS}
  24.     copy clone tgrindefs ${DEFSFILE}
  25.  
  26. clean:
  27.     delete ${CMDS} ${OBJS} retest
  28.